UCF STIG Viewer Logo

The Oracle Linux operating system must be configured so that all network connections associated with SSH traffic terminate after becoming unresponsive.


Overview

Finding ID Version Rule ID IA Controls Severity
V-221851 OL07-00-040340 SV-221851r917860_rule Medium
Description
Terminating an unresponsive SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element. Terminating network connections associated with communications sessions includes, for example, deallocating associated TCP/IP address/port pairs at the operating system level and deallocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean the operating system terminates all sessions or network access; it only ends the unresponsive session and releases the resources associated with that session. Satisfies: SRG-OS-000163-GPOS-00072, SRG-OS-000279-GPOS-00109
STIG Date
Oracle Linux 7 Security Technical Implementation Guide 2023-09-11

Details

Check Text ( C-23566r917858_chk )
Verify the SSH server automatically terminates a user session after the SSH client has become unresponsive.

Check for the value of the "ClientAliveCountMax" keyword with the following command:

# grep -i clientalivecount /etc/ssh/sshd_config
ClientAliveCountMax 0

If "ClientAliveCountMax" is not set to "0", this is a finding.
Fix Text (F-23555r917859_fix)
Note: This setting must be applied in conjunction with OL07-00-040320 to function correctly.

Configure the SSH server to terminate a user session automatically after the SSH client has become unresponsive.

Add the following line (or modify the line to have the required value) to the "/etc/ssh/sshd_config" file (this file may be named differently or be in a different location if using a version of SSH that is provided by a third-party vendor):

ClientAliveCountMax 0

The SSH service must be restarted for changes to take effect.